home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / pcmagazi / 1989 / 08 / fast.bas < prev    next >
BASIC Source File  |  1988-09-25  |  216b  |  13 lines

  1. 'Run this program with and without the
  2. 'following line to see the difference
  3. SHELL "CLS"
  4.  
  5. CLS
  6. DIM Array$(72)
  7. FOR X = 1 TO 72
  8.   Array$(X) = STRING$(79, X + 32)
  9. NEXT
  10. FOR X = 1 TO 72
  11.   PRINT Array$(X);
  12. NEXT
  13.